home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / xgopher.1.3 / sc_soundP.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-30  |  1.4 KB  |  41 lines

  1. /* sc_soundP.h
  2.    private header file for gopher item subclass: sound */
  3.  
  4.      /*---------------------------------------------------------------*/
  5.      /* Xgopher        version 1.3     08 April 1993                  */
  6.      /*                version 1.2     20 November 1992               */
  7.      /*                version 1.1     20 April 1992                  */
  8.      /*                version 1.0     04 March 1992                  */
  9.      /* X window system client for the University of Minnesota        */
  10.      /*                                Internet Gopher System.        */
  11.      /* Allan Tuchman, University of Illinois at Urbana-Champaign     */
  12.      /*                Computing and Communications Services Office   */
  13.      /* Copyright 1992, 1993 by                                       */
  14.      /*           the Board of Trustees of the University of Illinois */
  15.      /* Permission is granted to freely copy and redistribute this    */
  16.      /* software with the copyright notice intact.                    */
  17.      /*---------------------------------------------------------------*/
  18.  
  19. #include "util.h"
  20. #include "sc_sound.h"
  21.  
  22. char    prefixSound [ PREFIX_LEN ];
  23.  
  24.  
  25. static accessList    soundHostList;
  26.  
  27. /* ----- subclass record definition ----- */
  28.  
  29. scInfo    soundSubclass = {
  30.         "sound file",
  31.         prefixSound,
  32.         &soundHostList,
  33.         GISound_access,
  34.         GI_copyToFile,
  35.         copyTypeBinaryEOF,
  36.         GISound_process,
  37.         GISound_init,
  38.         GI_done,
  39.         GISound_restart
  40.     };
  41.